{
}
-/**
+/*< private >
* gtk_buildable_set_buildable_id:
* @buildable: a #GtkBuildable
* @id: name to set
*
* Sets the ID of the @buildable object.
- **/
+ */
void
gtk_buildable_set_buildable_id (GtkBuildable *buildable,
const char *id)
"gtk-builder-id");
}
-/**
+/*< private >
* gtk_buildable_add_child:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder
*
* Adds a child to @buildable. @type is an optional string
* describing how the child should be added.
- **/
+ */
void
gtk_buildable_add_child (GtkBuildable *buildable,
GtkBuilder *builder,
(* iface->add_child) (buildable, builder, child, type);
}
-/**
+/*< private >
* gtk_buildable_set_buildable_property:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder
* @value: value of property
*
* Sets the property name @name to @value on the @buildable object.
- **/
+ */
void
gtk_buildable_set_buildable_property (GtkBuildable *buildable,
GtkBuilder *builder,
g_object_set_property (G_OBJECT (buildable), name, value);
}
-/**
+/*< private >
* gtk_buildable_parser_finished:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder
* Note that this will be called once for each time
* gtk_builder_add_from_file() or gtk_builder_add_from_string()
* is called on a builder.
- **/
+ */
void
gtk_buildable_parser_finished (GtkBuildable *buildable,
GtkBuilder *builder)
(* iface->parser_finished) (buildable, builder);
}
-/**
+/*< private >
* gtk_buildable_construct_child:
* @buildable: A #GtkBuildable
* @builder: #GtkBuilder used to construct this object
* specified in the UI definition.
*
* Returns: (transfer full): the constructed child
- **/
+ */
GObject *
gtk_buildable_construct_child (GtkBuildable *buildable,
GtkBuilder *builder,
return (* iface->construct_child) (buildable, builder, name);
}
-/**
+/*< private >
* gtk_buildable_custom_tag_start:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder used to construct this object
*
* Returns: %TRUE if an object has a custom implementation, %FALSE
* if it doesn't.
- **/
+ */
gboolean
gtk_buildable_custom_tag_start (GtkBuildable *buildable,
GtkBuilder *builder,
tagname, parser, data);
}
-/**
+/*< private >
* gtk_buildable_custom_tag_end:
* @buildable: A #GtkBuildable
* @builder: #GtkBuilder used to construct this object
*
* This is called at the end of each custom element handled by
* the buildable.
- **/
+ */
void
gtk_buildable_custom_tag_end (GtkBuildable *buildable,
GtkBuilder *builder,
(* iface->custom_tag_end) (buildable, builder, child, tagname, data);
}
-/**
+/*< private >
* gtk_buildable_custom_finished:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder
*
* This is similar to gtk_buildable_parser_finished() but is
* called once for each custom tag handled by the @buildable.
- **/
+ */
void
gtk_buildable_custom_finished (GtkBuildable *buildable,
GtkBuilder *builder,
(* iface->custom_finished) (buildable, builder, child, tagname, data);
}
-/**
+/*< private >
* gtk_buildable_get_internal_child:
* @buildable: a #GtkBuildable
* @builder: a #GtkBuilder
* Get the internal child called @childname of the @buildable object.
*
* Returns: (transfer none): the internal child of the buildable object
- **/
+ */
GObject *
gtk_buildable_get_internal_child (GtkBuildable *buildable,
GtkBuilder *builder,